local bbg = Instance.new("BillboardGui") bbg.Name = "YourMother" bbg.Adornee = owner.Character.Head bbg.Size = UDim2.fromScale(100, 1) bbg.StudsOffset = Vector3.new(0, 2, 0) bbg.Parent = owner.Character.Head local box = Instance.new("TextBox", bbg) box.Size = UDim2.new(1, 0, 1, 0) box.BackgroundTransparency = 1 box.TextColor3 = Color3.new(1,1,1) box.Font = Enum.Font.Code box.Text = "" box.TextScaled = true box.TextWrapped = true owner.CharacterAdded:Connect(function(char) char:WaitForChild("Head") bbg = Instance.new("BillboardGui") bbg.Name = "YourMother" bbg.Adornee = char.Head bbg.Size = UDim2.fromScale(100, 1) bbg.StudsOffset = Vector3.new(0, 2, 0) bbg.Parent = char.Head box = Instance.new("TextBox", bbg) box.Size = UDim2.new(1, 0, 1, 0) box.BackgroundTransparency = 1 box.TextColor3 = Color3.new(1,1,1) box.Font = Enum.Font.Code box.Text = "" box.TextScaled = true box.TextWrapped = true end) owner.Chatted:Connect(function(msg) for x = 1, #msg do box.Text = msg:sub(1, x) task.wait(0.01) end end)